{
  "bundles": [
    {
      "@type": "NXBundle",
      "artifactId": "nuxeo-platform-video-convert",
      "artifactVersion": "10.10-HF27",
      "bundleGroup": {
        "@type": "NXBundleGroup",
        "bundleIds": [
          "org.nuxeo.ecm.platform.video.api",
          "org.nuxeo.ecm.platform.video.convert",
          "org.nuxeo.ecm.platform.video.core",
          "org.nuxeo.ecm.platform.video.jsf"
        ],
        "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video",
        "id": "grp:org.nuxeo.ecm.platform.video",
        "name": "org.nuxeo.ecm.platform.video",
        "parentIds": [
          "grp:org.nuxeo.ecm.platform"
        ],
        "readmes": [
          {
            "blobProviderId": "default",
            "content": "# Nuxeo Platform Video\n\n[Documentation][1]\n\n  [1]: http://doc.nuxeo.com/x/SA4z\n\n# Building\n\n    mvn clean install\n\n## Deploying\n\nCopy the built artifacts into `$NUXEO_HOME/templates/custom/bundles/` and activate the \"custom\" template.\n\n## QA results\n\n[![Build Status](https://qa.nuxeo.org/jenkins/buildStatus/icon?job=addons_nuxeo-platform-video-master)](https://qa.nuxeo.org/jenkins/job/addons_nuxeo-platform-video-master/)\n\n# About Nuxeo\n\nNuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.\n",
            "digest": "5a6d46f94577010cadc9d214c2626c39",
            "encoding": "UTF-8",
            "length": 1100,
            "mimeType": "text/plain",
            "name": "README.md"
          }
        ],
        "version": "10.10"
      },
      "bundleId": "org.nuxeo.ecm.platform.video.convert",
      "components": [
        {
          "@type": "NXComponent",
          "documentationHtml": "",
          "extensionPoints": [],
          "extensions": [
            {
              "@type": "NXContribution",
              "documentationHtml": "",
              "extensionPoint": "org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent--command",
              "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.commandline/Contributions/org.nuxeo.ecm.platform.video.convert.commandline--command",
              "id": "org.nuxeo.ecm.platform.video.convert.commandline--command",
              "registrationOrder": 8,
              "targetComponentName": {
                "rawName": "service:org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent",
                "name": "org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent",
                "type": "service"
              },
              "version": "10.10-HF27",
              "xml": "<extension point=\"command\" target=\"org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent\">\n\n    <command enabled=\"true\" name=\"ffmpeg-info\">\n      <commandLine>ffprobe</commandLine>\n      <parameterString> #{inFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-screenshot\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for\n        faster (though less accurate) seek / skip to position in the input file -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-screenshot-resize\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for faster\n        (though less accurate) seek / skip to position in the input file.\n\n        The -vframes 1 option tell to take only one screenshot. This is\n        necessary as apparent the use of the \"-s\" option forces ffmpeg to\n        switch in \"many output files\" mode.\n      -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 -s #{width}x#{height} #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-towebm\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-tomp4\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec aac -strict -2 -pix_fmt yuv420p -vcodec libx264 -v 0 #{outFilePath}</parameterString>\n      <winParameterString> -i #{inFilePath} -s #{width}x#{height} -pix_fmt yuv420p -vcodec libx264 -v 0 #{outFilePath}</winParameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command enabled=\"true\" name=\"ffmpeg-toogg\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n  \n    <command enabled=\"true\" name=\"ffmpeg-toavi\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -q:v 0 -c:v mpeg4 -c:a ac3 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg.\n      </installationDirective>\n    </command>\n\n  </extension>"
            }
          ],
          "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.commandline",
          "name": "org.nuxeo.ecm.platform.video.convert.commandline",
          "requirements": [
            "org.nuxeo.ecm.platform.commandline.executor.service.defaultContrib"
          ],
          "resolutionOrder": 610,
          "services": [],
          "startOrder": 609,
          "version": "10.10-HF27",
          "xmlFileContent": "<?xml version=\"1.0\"?>\n<component name=\"org.nuxeo.ecm.platform.video.convert.commandline\">\n\n  <require>org.nuxeo.ecm.platform.commandline.executor.service.defaultContrib</require>\n\n  <extension\n    target=\"org.nuxeo.ecm.platform.commandline.executor.service.CommandLineExecutorComponent\"\n    point=\"command\">\n\n    <command name=\"ffmpeg-info\" enabled=\"true\">\n      <commandLine>ffprobe</commandLine>\n      <parameterString> #{inFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-screenshot\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for\n        faster (though less accurate) seek / skip to position in the input file -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-screenshot-resize\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <!-- It's important to put the -ss option before the -i option for faster\n        (though less accurate) seek / skip to position in the input file.\n\n        The -vframes 1 option tell to take only one screenshot. This is\n        necessary as apparent the use of the \"-s\" option forces ffmpeg to\n        switch in \"many output files\" mode.\n      -->\n      <parameterString> -y -ss #{position} -i #{inFilePath} -vframes 1 -f image2 -s #{width}x#{height} #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-towebm\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-tomp4\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec aac -strict -2 -pix_fmt yuv420p -vcodec libx264 -v 0 #{outFilePath}</parameterString>\n      <winParameterString> -i #{inFilePath} -s #{width}x#{height} -pix_fmt yuv420p -vcodec libx264 -v 0 #{outFilePath}</winParameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n\n    <command name=\"ffmpeg-toogg\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -acodec libvorbis -v 0 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg from http://ffmpeg.org (apt-get install ffmpeg)\n      </installationDirective>\n    </command>\n  \n    <command name=\"ffmpeg-toavi\" enabled=\"true\">\n      <commandLine>ffmpeg</commandLine>\n      <parameterString> -i #{inFilePath} -s #{width}x#{height} -q:v 0 -c:v mpeg4 -c:a ac3 #{outFilePath}</parameterString>\n      <installationDirective>You need to install ffmpeg.\n      </installationDirective>\n    </command>\n\n  </extension>\n\n</component>\n",
          "xmlFileName": "/OSGI-INF/commandline-contrib.xml",
          "xmlPureComponent": true
        },
        {
          "@type": "NXComponent",
          "documentationHtml": "",
          "extensionPoints": [],
          "extensions": [
            {
              "@type": "NXContribution",
              "documentationHtml": "",
              "extensionPoint": "org.nuxeo.ecm.core.convert.service.ConversionServiceImpl--converter",
              "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.converters/Contributions/org.nuxeo.ecm.platform.video.convert.converters--converter",
              "id": "org.nuxeo.ecm.platform.video.convert.converters--converter",
              "registrationOrder": 7,
              "targetComponentName": {
                "rawName": "service:org.nuxeo.ecm.core.convert.service.ConversionServiceImpl",
                "name": "org.nuxeo.ecm.core.convert.service.ConversionServiceImpl",
                "type": "service"
              },
              "version": "10.10-HF27",
              "xml": "<extension point=\"converter\" target=\"org.nuxeo.ecm.core.convert.service.ConversionServiceImpl\">\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.StoryboardConverter\" name=\"videoStoryboard\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.ScreenshotConverter\" name=\"videoScreenshot\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToWebM\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/webm</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-towebm</parameter>\n        <parameter name=\"videoMimeType\">video/webm</parameter>\n        <parameter name=\"videoExtension\">webm</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToWebM</parameter>\n      </parameters>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToMP4\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/mp4</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-tomp4</parameter>\n        <parameter name=\"videoMimeType\">video/mp4</parameter>\n        <parameter name=\"videoExtension\">mp4</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToMP4</parameter>\n      </parameters>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToOgg\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/ogg</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toogg</parameter>\n        <parameter name=\"videoMimeType\">video/ogg</parameter>\n        <parameter name=\"videoExtension\">ogg</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToOgg</parameter>\n      </parameters>\n    </converter>\n\n    <converter class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\" name=\"convertToAVI\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/x-msvideo</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toavi</parameter>\n        <parameter name=\"videoMimeType\">video/x-msvideo</parameter>\n        <parameter name=\"videoExtension\">avi</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToAVI</parameter>\n      </parameters>\n    </converter>\n\n  </extension>"
            }
          ],
          "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert/org.nuxeo.ecm.platform.video.convert.converters",
          "name": "org.nuxeo.ecm.platform.video.convert.converters",
          "requirements": [],
          "resolutionOrder": 611,
          "services": [],
          "startOrder": 610,
          "version": "10.10-HF27",
          "xmlFileContent": "<?xml version=\"1.0\"?>\n<component name=\"org.nuxeo.ecm.platform.video.convert.converters\">\n\n  <extension target=\"org.nuxeo.ecm.core.convert.service.ConversionServiceImpl\"\n    point=\"converter\">\n\n    <converter name=\"videoStoryboard\"\n      class=\"org.nuxeo.ecm.platform.video.convert.StoryboardConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter name=\"videoScreenshot\"\n      class=\"org.nuxeo.ecm.platform.video.convert.ScreenshotConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>image/jpeg</destinationMimeType>\n    </converter>\n\n    <converter name=\"convertToWebM\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/webm</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-towebm</parameter>\n        <parameter name=\"videoMimeType\">video/webm</parameter>\n        <parameter name=\"videoExtension\">webm</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToWebM</parameter>\n      </parameters>\n    </converter>\n\n    <converter name=\"convertToMP4\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/mp4</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-tomp4</parameter>\n        <parameter name=\"videoMimeType\">video/mp4</parameter>\n        <parameter name=\"videoExtension\">mp4</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToMP4</parameter>\n      </parameters>\n    </converter>\n\n    <converter name=\"convertToOgg\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/ogg</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toogg</parameter>\n        <parameter name=\"videoMimeType\">video/ogg</parameter>\n        <parameter name=\"videoExtension\">ogg</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToOgg</parameter>\n      </parameters>\n    </converter>\n\n    <converter name=\"convertToAVI\"\n      class=\"org.nuxeo.ecm.platform.video.convert.VideoConversionConverter\">\n      <sourceMimeType>video/*</sourceMimeType>\n      <sourceMimeType>application/gxf</sourceMimeType>\n      <sourceMimeType>application/mxf</sourceMimeType>\n      <destinationMimeType>video/x-msvideo</destinationMimeType>\n      <parameters>\n        <parameter name=\"CommandLineName\">ffmpeg-toavi</parameter>\n        <parameter name=\"videoMimeType\">video/x-msvideo</parameter>\n        <parameter name=\"videoExtension\">avi</parameter>\n        <parameter name=\"tmpDirectoryPrefix\">convertToAVI</parameter>\n      </parameters>\n    </converter>\n\n  </extension>\n\n</component>\n",
          "xmlFileName": "/OSGI-INF/convert-service-contrib.xml",
          "xmlPureComponent": true
        }
      ],
      "fileName": "nuxeo-platform-video-convert-10.10-HF27.jar",
      "groupId": "org.nuxeo.ecm.platform",
      "hierarchyPath": "/grp:org.nuxeo.ecm.platform/grp:org.nuxeo.ecm.platform.video/org.nuxeo.ecm.platform.video.convert",
      "id": "org.nuxeo.ecm.platform.video.convert",
      "location": "",
      "manifest": "Manifest-Version: 1.0\r\nArchiver-Version: Plexus Archiver\r\nCreated-By: Apache Maven\r\nBuilt-By: jenkins\r\nBuild-Jdk: 1.8.0_222\r\nBundle-ManifestVersion: 2\r\nBundle-Version: 10.10-HF27-t20200527-023428\r\nBundle-Name: Nuxeo Video Convert\r\nBundle-SymbolicName: org.nuxeo.ecm.platform.video.convert\r\nBundle-Vendor: Nuxeo\r\nBundle-Localization: plugin\r\nBundle-Category: core,stateful\r\nRequire-Bundle: org.nuxeo.ecm.core.api,org.nuxeo.ecm.core.convert\r\nExport-Package: org.nuxeo.ecm.platform.video.convert\r\nNuxeo-Component: OSGI-INF/commandline-contrib.xml,OSGI-INF/convert-ser\r\n vice-contrib.xml\r\n\r\n",
      "maxResolutionOrder": 611,
      "minResolutionOrder": 610,
      "packages": [
        "nuxeo-10.10-HF27",
        "nuxeo-dam"
      ],
      "parentReadme": {
        "blobProviderId": "default",
        "content": "# Nuxeo Platform Video\n\n[Documentation][1]\n\n  [1]: http://doc.nuxeo.com/x/SA4z\n\n# Building\n\n    mvn clean install\n\n## Deploying\n\nCopy the built artifacts into `$NUXEO_HOME/templates/custom/bundles/` and activate the \"custom\" template.\n\n## QA results\n\n[![Build Status](https://qa.nuxeo.org/jenkins/buildStatus/icon?job=addons_nuxeo-platform-video-master)](https://qa.nuxeo.org/jenkins/job/addons_nuxeo-platform-video-master/)\n\n# About Nuxeo\n\nNuxeo dramatically improves how content-based applications are built, managed and deployed, making customers more agile, innovative and successful. Nuxeo provides a next generation, enterprise ready platform for building traditional and cutting-edge content oriented applications. Combining a powerful application development environment with SaaS-based tools and a modular architecture, the Nuxeo Platform and Products provide clear business value to some of the most recognizable brands including Verizon, Electronic Arts, Sharp, FICO, the U.S. Navy, and Boeing. Nuxeo is headquartered in New York and Paris. More information is available at www.nuxeo.com.\n",
        "digest": "5a6d46f94577010cadc9d214c2626c39",
        "encoding": "UTF-8",
        "length": 1100,
        "mimeType": "text/plain",
        "name": "README.md"
      },
      "requirements": [
        "org.nuxeo.ecm.core.api",
        "org.nuxeo.ecm.core.convert"
      ],
      "version": "10.10-HF27"
    }
  ],
  "creationDate": 1664793571025,
  "key": "Nuxeo Platform LTS 2019-10.10",
  "name": "Nuxeo Platform LTS 2019",
  "operations": [],
  "packages": [
    {
      "@type": "NXPackage",
      "bundles": [
        "org.nuxeo.ecm.automation.io",
        "org.nuxeo.ecm.automation.server",
        "org.nuxeo.ecm.core",
        "org.nuxeo.ecm.core.api",
        "org.nuxeo.ecm.core.storage.mongodb",
        "org.nuxeo.ecm.core.storage.sql",
        "org.nuxeo.ecm.platform.audit",
        "org.nuxeo.ecm.directory",
        "org.nuxeo.ecm.platform.video.api",
        "org.nuxeo.ecm.platform.video.convert",
        "org.nuxeo.ecm.platform.video.core",
        "org.nuxeo.ecm.platform.web.common",
        "org.nuxeo.ecm.platform.restapi.server",
        "org.nuxeo.runtime.mongodb",
        "org.nuxeo.runtime.redis",
        "org.nuxeo.web.ui"
      ],
      "conflicts": [],
      "dependencies": [
        "nuxeo-10.10-HF26:1.0.0"
      ],
      "hierarchyPath": "/nuxeo-10.10-HF27-1.0.0",
      "id": "nuxeo-10.10-HF27-1.0.0",
      "name": "nuxeo-10.10-HF27",
      "optionalDependencies": [],
      "packageType": "hotfix",
      "title": "Nuxeo 10.10-HF27",
      "version": "1.0.0"
    },
    {
      "@type": "NXPackage",
      "bundles": [
        "org.nuxeo.ecm.platform.annotations.api",
        "org.nuxeo.ecm.annotations.contrib",
        "org.nuxeo.ecm.annotations",
        "org.nuxeo.ecm.annotations.client",
        "org.nuxeo.ecm.annotations.http",
        "org.nuxeo.ecm.annotations.repository",
        "org.nuxeo.dam",
        "org.nuxeo.web.ui.dam",
        "org.nuxeo.ecm.platform.audio.core",
        "org.nuxeo.ecm.platform.audio.jsf",
        "org.nuxeo.ecm.platform.picture.api",
        "org.nuxeo.ecm.platform.picture.convert",
        "org.nuxeo.ecm.platform.picture.core",
        "org.nuxeo.ecm.platform.picture.jsf",
        "org.nuxeo.ecm.platform.pictures.tiles",
        "org.nuxeo.ecm.platform.pictures.tiles.preview",
        "org.nuxeo.ecm.platform.video.api",
        "org.nuxeo.ecm.platform.video.convert",
        "org.nuxeo.ecm.platform.video.core",
        "org.nuxeo.ecm.platform.video.jsf"
      ],
      "conflicts": [],
      "dependencies": [],
      "hierarchyPath": "/nuxeo-dam-6.4.3",
      "id": "nuxeo-dam-6.4.3",
      "name": "nuxeo-dam",
      "optionalDependencies": [
        "nuxeo-jsf-ui",
        "nuxeo-web-ui"
      ],
      "packageType": "addon",
      "title": "Nuxeo DAM",
      "version": "6.4.3"
    }
  ],
  "pluginSnapshots": {},
  "releaseDate": 1547942400000,
  "version": "10.10"
}